home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / STYLE3.H < prev    next >
C/C++ Source or Header  |  1994-05-15  |  1KB  |  43 lines

  1.                               /* Chapter 11 - Program 8 - STYLE3.H */
  2. /* STYLE3.H - Style illustration file                              */
  3. /* copyright - Coronado Enterprises - 1994                         */
  4.  
  5. /* This program does nothing useful as far as being an executable  */
  6. /*  program.  It is intended to be simply a guide to style.  It is */
  7. /*  assumed that there are other files that will be used with this */
  8. /*  since other information is included here.                      */
  9.  
  10. #define START 2
  11. #define MAX_ID 2564
  12. #define CLASSIFICATION_1 12
  13. #define CLASSIFICATION_2 17
  14. #define CLASSIFICATION_3 20
  15. #define LINE_LENGTH      25
  16.  
  17. struct person {
  18.    char name[LINE_LENGTH];
  19.    int  age;
  20.    char status;        /* M = married, S = single */
  21. };
  22.  
  23. struct alldat {
  24.    int grade;
  25.    struct person descrip;
  26.    char lunch[LINE_LENGTH];
  27. };
  28.  
  29. struct tuition {
  30.    int years_resident;
  31.    int hours_completed;
  32.    float scholarship_amount;
  33.    float total_tuition;
  34. };
  35.  
  36.    /* Function prototypes for all functions                        */
  37. float get_tuition(int student_number);
  38. float get_arrears(int student_number, struct tuition student_info);
  39. void  print_data(int student_number, int key_code);
  40. float get_gpa(int student_number);
  41.  
  42.  
  43.